diff options
Diffstat (limited to 'frontend/src/app/(main)/goals/edit/[id]')
-rw-r--r-- | frontend/src/app/(main)/goals/edit/[id]/page.tsx | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/frontend/src/app/(main)/goals/edit/[id]/page.tsx b/frontend/src/app/(main)/goals/edit/[id]/page.tsx index ed51f92..4c02bb2 100644 --- a/frontend/src/app/(main)/goals/edit/[id]/page.tsx +++ b/frontend/src/app/(main)/goals/edit/[id]/page.tsx @@ -1,5 +1,6 @@ import { Metadata } from "next"; import { GoalForm } from "../../components/goal-form"; +import { use } from "react"; export const metadata: Metadata = { title: "Edit Goal | Finance", @@ -7,10 +8,11 @@ export const metadata: Metadata = { }; export default function EditGoalPage({ params }: { params: { id: string } }) { + const unwrappedParams = use(params); return ( <div className="container mx-auto py-8"> <h1 className="text-2xl font-bold tracking-tight mb-6">Edit Goal</h1> - <GoalForm goalId={parseInt(params.id)} /> + <GoalForm goalId={parseInt(unwrappedParams.id)} /> </div> ); }
\ No newline at end of file |